Clover coverage report - bexee - 0.1
Coverage timestamp: Do Dez 16 2004 13:24:06 CET
file stats: LOC: 31   Methods: 0
NCLOC: 7   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
Source.java - - - -
coverage
 1   
 /*
 2   
  * $Id: Source.java,v 1.1 2004/12/15 14:18:09 patforna Exp $
 3   
  *
 4   
  * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 5   
  * Berne University of Applied Sciences
 6   
  * School of Engineering and Information Technology
 7   
  * All rights reserved.
 8   
  */
 9   
 
 10   
 package bexee.model.elements;
 11   
 
 12   
 import bexee.model.expression.BooleanExpression;
 13   
 
 14   
 /**
 15   
  * Representation of the <code>Source</code> BPEL element.
 16   
  * 
 17   
  * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
 18   
  * @author Patric Fornasier
 19   
  * @author Pawel Kowalski
 20   
  */
 21   
 public interface Source {
 22   
 
 23   
     public Link getLink();
 24   
 
 25   
     public void setLink(Link link);
 26   
 
 27   
     public BooleanExpression getTransitionCondition();
 28   
 
 29   
     public void setTransitionCondition(BooleanExpression booleanExpression);
 30   
 
 31   
 }